home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / c / c_count-.0 / c_count- / c_count-7.0 / testing / Makefile < prev    next >
Encoding:
Makefile  |  1995-05-14  |  582 b   |  32 lines

  1. # $Id: Makefile,v 7.2 1995/05/14 21:16:12 tom Exp $
  2. # make-file for testing C_COUNT
  3.  
  4. ####### (Standard Lists) #######################################################
  5. SCRIPTS    =\
  6.     run_test.sh    run_test.com\
  7.     showdiff.sh
  8.  
  9. REF_FILES = \
  10.     cat.ref \
  11.     history.ref \
  12.     list.ref \
  13.     normal.ref \
  14.     quotes.ref \
  15.     table.ref \
  16.     table_p.ref
  17.  
  18. TST_FILES = \
  19.     test1.c \
  20.     test2.c \
  21.     test3.c
  22.  
  23. SOURCES    = Makefile descrip.mms README $(SCRIPTS) $(REF_FILES) $(TST_FILES)
  24.  
  25. ####### (Standard Productions) #################################################
  26. all:
  27.  
  28. clean:    
  29.     -rm -f *.log
  30. run_test:
  31.     ./run_test.sh 
  32.